home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / usr / lib / python2.5 / os.pyc (.txt) < prev    next >
Python Compiled Bytecode  |  2008-10-29  |  25KB  |  832 lines

  1. # Source Generated with Decompyle++
  2. # File: in.pyc (Python 2.5)
  3.  
  4. """OS routines for Mac, NT, or Posix depending on what system we're on.
  5.  
  6. This exports:
  7.   - all functions from posix, nt, os2, mac, or ce, e.g. unlink, stat, etc.
  8.   - os.path is one of the modules posixpath, ntpath, or macpath
  9.   - os.name is 'posix', 'nt', 'os2', 'mac', 'ce' or 'riscos'
  10.   - os.curdir is a string representing the current directory ('.' or ':')
  11.   - os.pardir is a string representing the parent directory ('..' or '::')
  12.   - os.sep is the (or a most common) pathname separator ('/' or ':' or '\\\\')
  13.   - os.extsep is the extension separator ('.' or '/')
  14.   - os.altsep is the alternate pathname separator (None or '/')
  15.   - os.pathsep is the component separator used in $PATH etc
  16.   - os.linesep is the line separator in text files ('\\r' or '\\n' or '\\r\\n')
  17.   - os.defpath is the default search path for executables
  18.   - os.devnull is the file path of the null device ('/dev/null', etc.)
  19.  
  20. Programs that import and use 'os' stand a better chance of being
  21. portable between different platforms.  Of course, they must then
  22. only use functions that are defined by all platforms (e.g., unlink
  23. and opendir), and leave all pathname manipulation to os.path
  24. (e.g., split and join).
  25. """
  26. import sys
  27. import errno
  28. _names = sys.builtin_module_names
  29. __all__ = [
  30.     'altsep',
  31.     'curdir',
  32.     'pardir',
  33.     'sep',
  34.     'pathsep',
  35.     'linesep',
  36.     'defpath',
  37.     'name',
  38.     'path',
  39.     'devnull',
  40.     'SEEK_SET',
  41.     'SEEK_CUR',
  42.     'SEEK_END']
  43.  
  44. def _get_exports_list(module):
  45.     
  46.     try:
  47.         return list(module.__all__)
  48.     except AttributeError:
  49.         return _[1]
  50.     except:
  51.         []
  52.  
  53.  
  54. if 'posix' in _names:
  55.     name = 'posix'
  56.     linesep = '\n'
  57.     from posix import *
  58.     
  59.     try:
  60.         from posix import _exit
  61.     except ImportError:
  62.         pass
  63.  
  64.     import posixpath as path
  65.     import posix
  66.     __all__.extend(_get_exports_list(posix))
  67.     del posix
  68. elif 'nt' in _names:
  69.     name = 'nt'
  70.     linesep = '\r\n'
  71.     from nt import *
  72.     
  73.     try:
  74.         from nt import _exit
  75.     except ImportError:
  76.         pass
  77.  
  78.     import ntpath as path
  79.     import nt
  80.     __all__.extend(_get_exports_list(nt))
  81.     del nt
  82. elif 'os2' in _names:
  83.     name = 'os2'
  84.     linesep = '\r\n'
  85.     from os2 import *
  86.     
  87.     try:
  88.         from os2 import _exit
  89.     except ImportError:
  90.         pass
  91.  
  92.     if sys.version.find('EMX GCC') == -1:
  93.         import ntpath as path
  94.     else:
  95.         import os2emxpath as path
  96.         from _emx_link import link
  97.     import os2
  98.     __all__.extend(_get_exports_list(os2))
  99.     del os2
  100. elif 'mac' in _names:
  101.     name = 'mac'
  102.     linesep = '\r'
  103.     from mac import *
  104.     
  105.     try:
  106.         from mac import _exit
  107.     except ImportError:
  108.         pass
  109.  
  110.     import macpath as path
  111.     import mac
  112.     __all__.extend(_get_exports_list(mac))
  113.     del mac
  114. elif 'ce' in _names:
  115.     name = 'ce'
  116.     linesep = '\r\n'
  117.     from ce import *
  118.     
  119.     try:
  120.         from ce import _exit
  121.     except ImportError:
  122.         pass
  123.  
  124.     import ntpath as path
  125.     import ce
  126.     __all__.extend(_get_exports_list(ce))
  127.     del ce
  128. elif 'riscos' in _names:
  129.     name = 'riscos'
  130.     linesep = '\n'
  131.     from riscos import *
  132.     
  133.     try:
  134.         from riscos import _exit
  135.     except ImportError:
  136.         pass
  137.  
  138.     import riscospath as path
  139.     import riscos
  140.     __all__.extend(_get_exports_list(riscos))
  141.     del riscos
  142. else:
  143.     raise ImportError, 'no os specific module found'
  144. sys.modules['os.path'] = path
  145. from os.path import curdir, pardir, sep, pathsep, defpath, extsep, altsep, devnull
  146. del _names
  147. SEEK_SET = 0
  148. SEEK_CUR = 1
  149. SEEK_END = 2
  150.  
  151. def makedirs(name, mode = 511):
  152.     '''makedirs(path [, mode=0777])
  153.  
  154.     Super-mkdir; create a leaf directory and all intermediate ones.
  155.     Works like mkdir, except that any intermediate path segment (not
  156.     just the rightmost) will be created if it does not exist.  This is
  157.     recursive.
  158.  
  159.     '''
  160.     (head, tail) = path.split(name)
  161.     if not tail:
  162.         (head, tail) = path.split(head)
  163.     
  164.     if head and tail and not path.exists(head):
  165.         
  166.         try:
  167.             makedirs(head, mode)
  168.         except OSError:
  169.             e = None
  170.             if e.errno != errno.EEXIST:
  171.                 raise 
  172.             
  173.         except:
  174.             e.errno != errno.EEXIST
  175.  
  176.         if tail == curdir:
  177.             return None
  178.         
  179.     
  180.     mkdir(name, mode)
  181.  
  182.  
  183. def removedirs(name):
  184.     '''removedirs(path)
  185.  
  186.     Super-rmdir; remove a leaf directory and all empty intermediate
  187.     ones.  Works like rmdir except that, if the leaf directory is
  188.     successfully removed, directories corresponding to rightmost path
  189.     segments will be pruned away until either the whole path is
  190.     consumed or an error occurs.  Errors during this latter phase are
  191.     ignored -- they generally mean that a directory was not empty.
  192.  
  193.     '''
  194.     rmdir(name)
  195.     (head, tail) = path.split(name)
  196.     if not tail:
  197.         (head, tail) = path.split(head)
  198.     
  199.     while head and tail:
  200.         
  201.         try:
  202.             rmdir(head)
  203.         except error:
  204.             break
  205.  
  206.         (head, tail) = path.split(head)
  207.  
  208.  
  209. def renames(old, new):
  210.     '''renames(old, new)
  211.  
  212.     Super-rename; create directories as necessary and delete any left
  213.     empty.  Works like rename, except creation of any intermediate
  214.     directories needed to make the new pathname good is attempted
  215.     first.  After the rename, directories corresponding to rightmost
  216.     path segments of the old name will be pruned way until either the
  217.     whole path is consumed or a nonempty directory is found.
  218.  
  219.     Note: this function can fail with the new directory structure made
  220.     if you lack permissions needed to unlink the leaf directory or
  221.     file.
  222.  
  223.     '''
  224.     (head, tail) = path.split(new)
  225.     if head and tail and not path.exists(head):
  226.         makedirs(head)
  227.     
  228.     rename(old, new)
  229.     (head, tail) = path.split(old)
  230.     if head and tail:
  231.         
  232.         try:
  233.             removedirs(head)
  234.         except error:
  235.             pass
  236.         except:
  237.             None<EXCEPTION MATCH>error
  238.         
  239.  
  240.     None<EXCEPTION MATCH>error
  241.  
  242. __all__.extend([
  243.     'makedirs',
  244.     'removedirs',
  245.     'renames'])
  246.  
  247. def walk(top, topdown = True, onerror = None):
  248.     '''Directory tree generator.
  249.  
  250.     For each directory in the directory tree rooted at top (including top
  251.     itself, but excluding \'.\' and \'..\'), yields a 3-tuple
  252.  
  253.         dirpath, dirnames, filenames
  254.  
  255.     dirpath is a string, the path to the directory.  dirnames is a list of
  256.     the names of the subdirectories in dirpath (excluding \'.\' and \'..\').
  257.     filenames is a list of the names of the non-directory files in dirpath.
  258.     Note that the names in the lists are just names, with no path components.
  259.     To get a full path (which begins with top) to a file or directory in
  260.     dirpath, do os.path.join(dirpath, name).
  261.  
  262.     If optional arg \'topdown\' is true or not specified, the triple for a
  263.     directory is generated before the triples for any of its subdirectories
  264.     (directories are generated top down).  If topdown is false, the triple
  265.     for a directory is generated after the triples for all of its
  266.     subdirectories (directories are generated bottom up).
  267.  
  268.     When topdown is true, the caller can modify the dirnames list in-place
  269.     (e.g., via del or slice assignment), and walk will only recurse into the
  270.     subdirectories whose names remain in dirnames; this can be used to prune
  271.     the search, or to impose a specific order of visiting.  Modifying
  272.     dirnames when topdown is false is ineffective, since the directories in
  273.     dirnames have already been generated by the time dirnames itself is
  274.     generated.
  275.  
  276.     By default errors from the os.listdir() call are ignored.  If
  277.     optional arg \'onerror\' is specified, it should be a function; it
  278.     will be called with one argument, an os.error instance.  It can
  279.     report the error to continue with the walk, or raise the exception
  280.     to abort the walk.  Note that the filename is available as the
  281.     filename attribute of the exception object.
  282.  
  283.     Caution:  if you pass a relative pathname for top, don\'t change the
  284.     current working directory between resumptions of walk.  walk never
  285.     changes the current directory, and assumes that the client doesn\'t
  286.     either.
  287.  
  288.     Example:
  289.  
  290.     import os
  291.     from os.path import join, getsize
  292.     for root, dirs, files in os.walk(\'python/Lib/email\'):
  293.         print root, "consumes",
  294.         print sum([getsize(join(root, name)) for name in files]),
  295.         print "bytes in", len(files), "non-directory files"
  296.         if \'CVS\' in dirs:
  297.             dirs.remove(\'CVS\')  # don\'t visit CVS directories
  298.     '''
  299.     join = join
  300.     isdir = isdir
  301.     islink = islink
  302.     import os.path
  303.     
  304.     try:
  305.         names = listdir(top)
  306.     except error:
  307.         err = None
  308.         if onerror is not None:
  309.             onerror(err)
  310.         
  311.         return None
  312.  
  313.     dirs = []
  314.     nondirs = []
  315.     for name in names:
  316.         if isdir(join(top, name)):
  317.             dirs.append(name)
  318.             continue
  319.         nondirs.append(name)
  320.     
  321.     if topdown:
  322.         yield (top, dirs, nondirs)
  323.     
  324.     for name in dirs:
  325.         path = join(top, name)
  326.         if not islink(path):
  327.             for x in walk(path, topdown, onerror):
  328.                 yield x
  329.             
  330.     
  331.     if not topdown:
  332.         yield (top, dirs, nondirs)
  333.     
  334.  
  335. __all__.append('walk')
  336.  
  337. try:
  338.     environ
  339. except NameError:
  340.     environ = { }
  341.  
  342.  
  343. def execl(file, *args):
  344.     '''execl(file, *args)
  345.  
  346.     Execute the executable file with argument list args, replacing the
  347.     current process. '''
  348.     execv(file, args)
  349.  
  350.  
  351. def execle(file, *args):
  352.     '''execle(file, *args, env)
  353.  
  354.     Execute the executable file with argument list args and
  355.     environment env, replacing the current process. '''
  356.     env = args[-1]
  357.     execve(file, args[:-1], env)
  358.  
  359.  
  360. def execlp(file, *args):
  361.     '''execlp(file, *args)
  362.  
  363.     Execute the executable file (which is searched for along $PATH)
  364.     with argument list args, replacing the current process. '''
  365.     execvp(file, args)
  366.  
  367.  
  368. def execlpe(file, *args):
  369.     '''execlpe(file, *args, env)
  370.  
  371.     Execute the executable file (which is searched for along $PATH)
  372.     with argument list args and environment env, replacing the current
  373.     process. '''
  374.     env = args[-1]
  375.     execvpe(file, args[:-1], env)
  376.  
  377.  
  378. def execvp(file, args):
  379.     '''execp(file, args)
  380.  
  381.     Execute the executable file (which is searched for along $PATH)
  382.     with argument list args, replacing the current process.
  383.     args may be a list or tuple of strings. '''
  384.     _execvpe(file, args)
  385.  
  386.  
  387. def execvpe(file, args, env):
  388.     '''execvpe(file, args, env)
  389.  
  390.     Execute the executable file (which is searched for along $PATH)
  391.     with argument list args and environment env , replacing the
  392.     current process.
  393.     args may be a list or tuple of strings. '''
  394.     _execvpe(file, args, env)
  395.  
  396. __all__.extend([
  397.     'execl',
  398.     'execle',
  399.     'execlp',
  400.     'execlpe',
  401.     'execvp',
  402.     'execvpe'])
  403.  
  404. def _execvpe(file, args, env = None):
  405.     if env is not None:
  406.         func = execve
  407.         argrest = (args, env)
  408.     else:
  409.         func = execv
  410.         argrest = (args,)
  411.         env = environ
  412.     (head, tail) = path.split(file)
  413.     if head:
  414.         func(file, *argrest)
  415.         return None
  416.     
  417.     if 'PATH' in env:
  418.         envpath = env['PATH']
  419.     else:
  420.         envpath = defpath
  421.     PATH = envpath.split(pathsep)
  422.     saved_exc = None
  423.     saved_tb = None
  424.     for dir in PATH:
  425.         fullname = path.join(dir, file)
  426.         
  427.         try:
  428.             func(fullname, *argrest)
  429.         continue
  430.         except error:
  431.             e = None
  432.             tb = sys.exc_info()[2]
  433.             if e.errno != errno.ENOENT and e.errno != errno.ENOTDIR and saved_exc is None:
  434.                 saved_exc = e
  435.                 saved_tb = tb
  436.             
  437.             saved_exc is None
  438.         
  439.  
  440.     
  441.     if saved_exc:
  442.         raise error, saved_exc, saved_tb
  443.     
  444.     raise error, e, tb
  445.  
  446.  
  447. try:
  448.     putenv
  449. except NameError:
  450.     pass
  451.  
  452. import UserDict
  453. if name in ('os2', 'nt'):
  454.     
  455.     def unsetenv(key):
  456.         putenv(key, '')
  457.  
  458.  
  459. if name == 'riscos':
  460.     from riscosenviron import _Environ
  461. elif name in ('os2', 'nt'):
  462.     
  463.     class _Environ(UserDict.IterableUserDict):
  464.         
  465.         def __init__(self, environ):
  466.             UserDict.UserDict.__init__(self)
  467.             data = self.data
  468.             for k, v in environ.items():
  469.                 data[k.upper()] = v
  470.             
  471.  
  472.         
  473.         def __setitem__(self, key, item):
  474.             putenv(key, item)
  475.             self.data[key.upper()] = item
  476.  
  477.         
  478.         def __getitem__(self, key):
  479.             return self.data[key.upper()]
  480.  
  481.         
  482.         try:
  483.             unsetenv
  484.         except NameError:
  485.             
  486.             def __delitem__(self, key):
  487.                 del self.data[key.upper()]
  488.  
  489.  
  490.         
  491.         def __delitem__(self, key):
  492.             unsetenv(key)
  493.             del self.data[key.upper()]
  494.  
  495.         
  496.         def has_key(self, key):
  497.             return key.upper() in self.data
  498.  
  499.         
  500.         def __contains__(self, key):
  501.             return key.upper() in self.data
  502.  
  503.         
  504.         def get(self, key, failobj = None):
  505.             return self.data.get(key.upper(), failobj)
  506.  
  507.         
  508.         def update(self, dict = None, **kwargs):
  509.             if dict:
  510.                 
  511.                 try:
  512.                     keys = dict.keys()
  513.                 except AttributeError:
  514.                     for k, v in dict:
  515.                         self[k] = v
  516.                     
  517.  
  518.                 for k in keys:
  519.                     self[k] = dict[k]
  520.                 
  521.             
  522.             if kwargs:
  523.                 self.update(kwargs)
  524.             
  525.  
  526.         
  527.         def copy(self):
  528.             return dict(self)
  529.  
  530.  
  531. else:
  532.     
  533.     class _Environ(UserDict.IterableUserDict):
  534.         
  535.         def __init__(self, environ):
  536.             UserDict.UserDict.__init__(self)
  537.             self.data = environ
  538.  
  539.         
  540.         def __setitem__(self, key, item):
  541.             putenv(key, item)
  542.             self.data[key] = item
  543.  
  544.         
  545.         def update(self, dict = None, **kwargs):
  546.             if dict:
  547.                 
  548.                 try:
  549.                     keys = dict.keys()
  550.                 except AttributeError:
  551.                     for k, v in dict:
  552.                         self[k] = v
  553.                     
  554.  
  555.                 for k in keys:
  556.                     self[k] = dict[k]
  557.                 
  558.             
  559.             if kwargs:
  560.                 self.update(kwargs)
  561.             
  562.  
  563.         
  564.         try:
  565.             unsetenv
  566.         except NameError:
  567.             pass
  568.  
  569.         
  570.         def __delitem__(self, key):
  571.             unsetenv(key)
  572.             del self.data[key]
  573.  
  574.         
  575.         def copy(self):
  576.             return dict(self)
  577.  
  578.  
  579. environ = _Environ(environ)
  580.  
  581. def getenv(key, default = None):
  582.     """Get an environment variable, return None if it doesn't exist.
  583.     The optional second argument can specify an alternate default."""
  584.     return environ.get(key, default)
  585.  
  586. __all__.append('getenv')
  587.  
  588. def _exists(name):
  589.     
  590.     try:
  591.         eval(name)
  592.         return True
  593.     except NameError:
  594.         return False
  595.  
  596.  
  597. if _exists('fork') and not _exists('spawnv') and _exists('execv'):
  598.     P_WAIT = 0
  599.     P_NOWAIT = P_NOWAITO = 1
  600.     
  601.     def _spawnvef(mode, file, args, env, func):
  602.         pid = fork()
  603.         if not pid:
  604.             
  605.             try:
  606.                 if env is None:
  607.                     func(file, args)
  608.                 else:
  609.                     func(file, args, env)
  610.             _exit(127)
  611.  
  612.         elif mode == P_NOWAIT:
  613.             return pid
  614.         
  615.         while None:
  616.             (wpid, sts) = waitpid(pid, 0)
  617.             if WIFSTOPPED(sts):
  618.                 continue
  619.                 continue
  620.             if WIFSIGNALED(sts):
  621.                 return -WTERMSIG(sts)
  622.                 continue
  623.             if WIFEXITED(sts):
  624.                 return WEXITSTATUS(sts)
  625.                 continue
  626.             raise error, 'Not stopped, signaled or exited???'
  627.             continue
  628.             return None
  629.  
  630.     
  631.     def spawnv(mode, file, args):
  632.         """spawnv(mode, file, args) -> integer
  633.  
  634. Execute file with arguments from args in a subprocess.
  635. If mode == P_NOWAIT return the pid of the process.
  636. If mode == P_WAIT return the process's exit code if it exits normally;
  637. otherwise return -SIG, where SIG is the signal that killed it. """
  638.         return _spawnvef(mode, file, args, None, execv)
  639.  
  640.     
  641.     def spawnve(mode, file, args, env):
  642.         """spawnve(mode, file, args, env) -> integer
  643.  
  644. Execute file with arguments from args in a subprocess with the
  645. specified environment.
  646. If mode == P_NOWAIT return the pid of the process.
  647. If mode == P_WAIT return the process's exit code if it exits normally;
  648. otherwise return -SIG, where SIG is the signal that killed it. """
  649.         return _spawnvef(mode, file, args, env, execve)
  650.  
  651.     
  652.     def spawnvp(mode, file, args):
  653.         """spawnvp(mode, file, args) -> integer
  654.  
  655. Execute file (which is looked for along $PATH) with arguments from
  656. args in a subprocess.
  657. If mode == P_NOWAIT return the pid of the process.
  658. If mode == P_WAIT return the process's exit code if it exits normally;
  659. otherwise return -SIG, where SIG is the signal that killed it. """
  660.         return _spawnvef(mode, file, args, None, execvp)
  661.  
  662.     
  663.     def spawnvpe(mode, file, args, env):
  664.         """spawnvpe(mode, file, args, env) -> integer
  665.  
  666. Execute file (which is looked for along $PATH) with arguments from
  667. args in a subprocess with the supplied environment.
  668. If mode == P_NOWAIT return the pid of the process.
  669. If mode == P_WAIT return the process's exit code if it exits normally;
  670. otherwise return -SIG, where SIG is the signal that killed it. """
  671.         return _spawnvef(mode, file, args, env, execvpe)
  672.  
  673.  
  674. if _exists('spawnv'):
  675.     
  676.     def spawnl(mode, file, *args):
  677.         """spawnl(mode, file, *args) -> integer
  678.  
  679. Execute file with arguments from args in a subprocess.
  680. If mode == P_NOWAIT return the pid of the process.
  681. If mode == P_WAIT return the process's exit code if it exits normally;
  682. otherwise return -SIG, where SIG is the signal that killed it. """
  683.         return spawnv(mode, file, args)
  684.  
  685.     
  686.     def spawnle(mode, file, *args):
  687.         """spawnle(mode, file, *args, env) -> integer
  688.  
  689. Execute file with arguments from args in a subprocess with the
  690. supplied environment.
  691. If mode == P_NOWAIT return the pid of the process.
  692. If mode == P_WAIT return the process's exit code if it exits normally;
  693. otherwise return -SIG, where SIG is the signal that killed it. """
  694.         env = args[-1]
  695.         return spawnve(mode, file, args[:-1], env)
  696.  
  697.     __all__.extend([
  698.         'spawnv',
  699.         'spawnve',
  700.         'spawnl',
  701.         'spawnle'])
  702.  
  703. if _exists('spawnvp'):
  704.     
  705.     def spawnlp(mode, file, *args):
  706.         """spawnlp(mode, file, *args) -> integer
  707.  
  708. Execute file (which is looked for along $PATH) with arguments from
  709. args in a subprocess with the supplied environment.
  710. If mode == P_NOWAIT return the pid of the process.
  711. If mode == P_WAIT return the process's exit code if it exits normally;
  712. otherwise return -SIG, where SIG is the signal that killed it. """
  713.         return spawnvp(mode, file, args)
  714.  
  715.     
  716.     def spawnlpe(mode, file, *args):
  717.         """spawnlpe(mode, file, *args, env) -> integer
  718.  
  719. Execute file (which is looked for along $PATH) with arguments from
  720. args in a subprocess with the supplied environment.
  721. If mode == P_NOWAIT return the pid of the process.
  722. If mode == P_WAIT return the process's exit code if it exits normally;
  723. otherwise return -SIG, where SIG is the signal that killed it. """
  724.         env = args[-1]
  725.         return spawnvpe(mode, file, args[:-1], env)
  726.  
  727.     __all__.extend([
  728.         'spawnvp',
  729.         'spawnvpe',
  730.         'spawnlp',
  731.         'spawnlpe'])
  732.  
  733. if _exists('fork'):
  734.     if not _exists('popen2'):
  735.         
  736.         def popen2(cmd, mode = 't', bufsize = -1):
  737.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  738.             may be a sequence, in which case arguments will be passed directly to
  739.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  740.             is a string it will be passed to the shell (as with os.system()). If
  741.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  742.             file objects (child_stdin, child_stdout) are returned."""
  743.             import popen2
  744.             (stdout, stdin) = popen2.popen2(cmd, bufsize)
  745.             return (stdin, stdout)
  746.  
  747.         __all__.append('popen2')
  748.     
  749.     if not _exists('popen3'):
  750.         
  751.         def popen3(cmd, mode = 't', bufsize = -1):
  752.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  753.             may be a sequence, in which case arguments will be passed directly to
  754.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  755.             is a string it will be passed to the shell (as with os.system()). If
  756.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  757.             file objects (child_stdin, child_stdout, child_stderr) are returned."""
  758.             import popen2
  759.             (stdout, stdin, stderr) = popen2.popen3(cmd, bufsize)
  760.             return (stdin, stdout, stderr)
  761.  
  762.         __all__.append('popen3')
  763.     
  764.     if not _exists('popen4'):
  765.         
  766.         def popen4(cmd, mode = 't', bufsize = -1):
  767.             """Execute the shell command 'cmd' in a sub-process.  On UNIX, 'cmd'
  768.             may be a sequence, in which case arguments will be passed directly to
  769.             the program without shell intervention (as with os.spawnv()).  If 'cmd'
  770.             is a string it will be passed to the shell (as with os.system()). If
  771.             'bufsize' is specified, it sets the buffer size for the I/O pipes.  The
  772.             file objects (child_stdin, child_stdout_stderr) are returned."""
  773.             import popen2
  774.             (stdout, stdin) = popen2.popen4(cmd, bufsize)
  775.             return (stdin, stdout)
  776.  
  777.         __all__.append('popen4')
  778.     
  779.  
  780. import copy_reg as _copy_reg
  781.  
  782. def _make_stat_result(tup, dict):
  783.     return stat_result(tup, dict)
  784.  
  785.  
  786. def _pickle_stat_result(sr):
  787.     (type, args) = sr.__reduce__()
  788.     return (_make_stat_result, args)
  789.  
  790.  
  791. try:
  792.     _copy_reg.pickle(stat_result, _pickle_stat_result, _make_stat_result)
  793. except NameError:
  794.     pass
  795.  
  796.  
  797. def _make_statvfs_result(tup, dict):
  798.     return statvfs_result(tup, dict)
  799.  
  800.  
  801. def _pickle_statvfs_result(sr):
  802.     (type, args) = sr.__reduce__()
  803.     return (_make_statvfs_result, args)
  804.  
  805.  
  806. try:
  807.     _copy_reg.pickle(statvfs_result, _pickle_statvfs_result, _make_statvfs_result)
  808. except NameError:
  809.     pass
  810.  
  811. if not _exists('urandom'):
  812.     
  813.     def urandom(n):
  814.         '''urandom(n) -> str
  815.  
  816.         Return a string of n random bytes suitable for cryptographic use.
  817.  
  818.         '''
  819.         
  820.         try:
  821.             _urandomfd = open('/dev/urandom', O_RDONLY)
  822.         except (OSError, IOError):
  823.             raise NotImplementedError('/dev/urandom (or equivalent) not found')
  824.  
  825.         bytes = ''
  826.         while len(bytes) < n:
  827.             bytes += read(_urandomfd, n - len(bytes))
  828.         close(_urandomfd)
  829.         return bytes
  830.  
  831.  
  832.